.headerframe{
  display: flex;
  height: 70px;
  background-color: white;
  align-items: center;
  justify-content: space-between;
 padding: 0 40px;
}

.logo{
  width: 60px;
  height: 60px;
}

.logoframe{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;

}

.middlesection{
  display: flex;
  height: 100%;
}

.navlist{
  display: flex;
  list-style-type: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navlist li{
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: grey;
  cursor: pointer;
}

.navlist li:hover{
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(43, 41, 41);
  cursor: pointer;
}




.gtbutton{
  background-color: rgb(171,44,63);
  color: white;
  font-family: Plus Jakarta Sans;
  border: none;
  border-radius: 5px;
  /* height: 45px; */
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 600;
}

.gtbutton:hover{
  background-color: transparent;
  color: rgb(171,44,63);
  border: none;
  border-radius: 5px;
  padding: 11px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(171,44,63);
}



 .herobox{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
 } 


.heroframe{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}

#heroimage{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 5s linear infinite;
}

@keyframes zoom{
  0%{
    transform: scale(1.2);
  }
  15%{
    transform: scale(1);
  }
  85%{
    transform: scale(1);
  }
  100%{
    transform: scale(1.2);
  }
}

.overlay{
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(34, 1, 1, 0.6), rgba(34, 1, 1, 0.6));
  position: absolute;
  top: 0;
}

.herotext{
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50% );
}

.herotext h1{
  font-size: 60px;
  line-height: 72px;
  color: white;
  /* position: absolute; */
  width: 700px;
  height: fit-content;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  line-height: 60px;
  /* top: 30%;
  left: 50%;
  transform: translate(-50%,-50% ); */
  text-align: center;
  margin: 0 0 20px 0;
}

.herotext h3{
  /* position: absolute; */
  font-size: 22px;
  font-weight: 300;
  color: white;
  /* top: 365px;
  left: 120px; */
  width: 600px;
  line-height: 32px;
  letter-spacing: 0.6px;
  text-align: center;
  margin: 0 0 25px 0;
}

.buttonsframe{
  display: flex;
  /* position: absolute;
  top: 460px;
  left: 120px; */
  align-items: center;
}

.getbut{
  background-color: rgb(255, 255, 255);
  color: rgb(22, 22, 22);
  font-family: Plus Jakarta Sans;
  border: none;
  border-radius: 5px;
  /* height: 45px; */
  cursor: pointer;
  font-size: 16px;
  transition: 0.5s;
  font-weight: 600;
  padding:16px 32px;
  margin-right: 32px;
}

.getbut:hover{
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  color: rgb(255, 255, 255);
  font-family: Plus Jakarta Sans;
  border-radius: 5px;
  /* height: 45px; */
  padding:16px 32px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.contactbut{
  background-color: rgb(171,44,63);
  color: white;
  font-family: Plus Jakarta Sans;
  border: none;
  border-radius: 5px;
  /* height: 45px; */
  cursor: pointer;
  font-size: 16px;
  transition: 0.5s;
  font-weight: 600;
  padding:16px 32px;
}

.contactbut:hover{
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  color: rgb(255, 255, 255);
  font-family: Plus Jakarta Sans;
  border-radius: 5px;
  /* height: 45px; */
  padding:16px 32px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.partnersbox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  position: relative;
  padding-top: 25px;
  border-bottom: 1px solid rgba(209, 209, 209, 0.5);
}

.partnersframe{
  display: flex;
  width: 800px;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}



